home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / Remoting / uTCPIntf.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2004-10-22  |  636 b   |  23 lines

  1. unit uTCPIntf;
  2. //------------------------------------------------------------------------------
  3. //  Last updated:   11/06/03
  4. //  Author:         Dennis Passmore
  5. //  Company:        Ultimate Software, Inc.
  6. //  Contact info:   dennis_passmore@ultimatesoftware.com
  7. //
  8. //  Compatibility:  Delphi for .NET TCP service demo
  9. //
  10. //  Description:    ServiceInstaller for TmpService application
  11. //
  12. //------------------------------------------------------------------------------
  13. interface
  14.  
  15. type
  16.   ITCPService = interface
  17.     function SayHello(const fItem: string; out aResult: string): boolean;
  18.   end;
  19.  
  20. implementation
  21.  
  22. end.
  23.